home *** CD-ROM | disk | FTP | other *** search
/ X User Tools / X User Tools (O'Reilly and Associates)(1994).ISO / sun4c / archive / tcltk.z / tcltk / man / cat3 / Restack.3 < prev    next >
Text File  |  1994-09-20  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. Tk_RestackWindow(3)   Tk Library Procedures
  5.  
  6.  
  7.  
  8. _________________________________________________________________
  9.  
  10. NAME
  11.      Tk_RestackWindow - Change a window's position in the  stack-
  12.      ing order
  13.  
  14. SYNOPSIS
  15.      #include <tk.h>
  16.  
  17.      int
  18.      Tk_RestackWindow(_t_k_w_i_n, _a_b_o_v_e_B_e_l_o_w, _o_t_h_e_r)
  19.  
  20. ARGUMENTS
  21.      Tk_Window   _t_k_w_i_n        (in)      Token for window to  res-
  22.                                         tack.
  23.  
  24.      int         _a_b_o_v_e_B_e_l_o_w   (in)      Indicates new position of
  25.                                         _t_k_w_i_n  relative to _o_t_h_e_r;
  26.                                         must be Above or Below.
  27.  
  28.      Tk_Window   _o_t_h_e_r        (in)      _T_k_w_i_n  will  be   reposi-
  29.                                         tioned   just   above  or
  30.                                         below this window.   Must
  31.                                         be  a sibling of _t_k_w_i_n or
  32.                                         a   descendant    of    a
  33.                                         sibling.   If  NULL  then
  34.                                         _t_k_w_i_n is restacked  above
  35.                                         or below all siblings.
  36. _________________________________________________________________
  37.  
  38.  
  39. DESCRIPTION
  40.      Tk_RestackWindow changes the stacking order of _w_i_n_d_o_w  rela-
  41.      tive  to  its  siblings.  If _o_t_h_e_r is specified as NULL then
  42.      _w_i_n_d_o_w is repositioned at the top or bottom of its  stacking
  43.      order,  depending  on  whether _a_b_o_v_e_B_e_l_o_w is Above or Below.
  44.      If _o_t_h_e_r has a non-NULL value then  _w_i_n_d_o_w  is  repositioned
  45.      just above or below _o_t_h_e_r.
  46.  
  47.      The _a_b_o_v_e_B_e_l_o_w argument must have one of the symbolic values
  48.      Above  or  Below.   Both  of these values are defined by the
  49.      include file <X11/Xlib.h>.
  50.  
  51.  
  52. KEYWORDS
  53.      above, below, obscure, stacking order
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Tk                                                              1
  64.  
  65.  
  66.  
  67.